Automatically test, build, and deploy your code whenever something changes in your GitHub repository.
GitHub Actions is a CI/CD platform built into GitHub. You can create workflows that automatically run when events happen in a repository, such as pushing code, opening a pull request, or creating a release.
A workflow is defined using YAML and can contain jobs and steps that run commands in isolated environments. This lets teams automate tasks such as running tests, checking code quality, building applications, and deploying them to production.
What you'll walk away knowing